Use info! instead of warn! for skipping message
authorSeth Falcon <seth@chef.io>
Tue, 7 Jul 2015 01:40:36 +0000 (18:40 -0700)
committerSeth Falcon <seth@chef.io>
Tue, 7 Jul 2015 01:40:36 +0000 (18:40 -0700)
src/cargo/ops/cargo_read_manifest.rs

index 3711d263eeb796423608e6e4ac8fd7ae5a9a38c8..123a92039c1e9a9b43db4a58dea7783e1fcf6cf2 100644 (file)
@@ -116,8 +116,8 @@ fn read_nested_packages(path: &Path,
     if !all_packages.contains_key(&pkg_id) {
         all_packages.insert(pkg_id, pkg);
     } else {
-        warn!("skipping nested package `{}` found at `{}`",
-              &pkg.name(), &path.to_string_lossy());
+        info!("skipping nested package `{}` found at `{}`",
+              pkg.name(), path.to_string_lossy());
     }
 
     // Registry sources are not allowed to have `path=` dependencies because